home *** CD-ROM | disk | FTP | other *** search
/ Cracking 2 / Cracking II..iso / Kompresni & kodovaci programy / ucl-0.91 / include / ucl / ucl.h < prev    next >
C/C++ Source or Header  |  2000-04-05  |  8KB  |  188 lines

  1. /* ucl.h -- prototypes for the UCL real-time data compression library
  2.  
  3.    This file is part of the UCL real-time data compression library.
  4.  
  5.    Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
  6.    Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
  7.    Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
  8.    Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
  9.    Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
  10.  
  11.    The UCL library is free software; you can redistribute it and/or
  12.    modify it under the terms of the GNU General Public License as
  13.    published by the Free Software Foundation; either version 2 of
  14.    the License, or (at your option) any later version.
  15.  
  16.    The UCL library is distributed in the hope that it will be useful,
  17.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.    GNU General Public License for more details.
  20.  
  21.    You should have received a copy of the GNU General Public License
  22.    along with the UCL library; see the file COPYING.
  23.    If not, write to the Free Software Foundation, Inc.,
  24.    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  25.  
  26.    Markus F.X.J. Oberhumer
  27.    <markus.oberhumer@jk.uni-linz.ac.at>
  28.    http://wildsau.idv.uni-linz.ac.at/mfx/ucl.html
  29.  */
  30.  
  31.  
  32. #ifndef __UCL_H
  33. #define __UCL_H
  34.  
  35. #ifndef __UCLCONF_H
  36. #include <ucl/uclconf.h>
  37. #endif
  38.  
  39. #ifdef __cplusplus
  40. extern "C" {
  41. #endif
  42.  
  43.  
  44. /***********************************************************************
  45. //
  46. ************************************************************************/
  47.  
  48. /* note: to use default values pass -1, i.e. initialize
  49.  * this struct by a memset(x,0xff,sizeof(x)) */
  50. struct ucl_compress_config_t
  51. {
  52.     int bb_endian;
  53.     int bb_size;
  54.     ucl_uint max_offset;
  55.     ucl_uint max_match;
  56.     int s_level;
  57.     int h_level;
  58.     int p_level;
  59.     int c_flags;
  60.     ucl_uint m_size;
  61. };
  62.  
  63. #define ucl_compress_config_p   ucl_compress_config_t __UCL_MMODEL *
  64.  
  65.  
  66. /***********************************************************************
  67. // compressors
  68. ************************************************************************/
  69.  
  70. UCL_EXTERN(int)
  71. ucl_nrv2b_99_compress      ( const ucl_bytep src, ucl_uint src_len,
  72.                                    ucl_bytep dst, ucl_uintp dst_len,
  73.                                    ucl_progress_callback_p cb,
  74.                                    int level,
  75.                              const struct ucl_compress_config_p conf,
  76.                                    ucl_uintp result );
  77.  
  78. UCL_EXTERN(int)
  79. ucl_nrv2d_99_compress      ( const ucl_bytep src, ucl_uint src_len,
  80.                                    ucl_bytep dst, ucl_uintp dst_len,
  81.                                    ucl_progress_callback_p cb,
  82.                                    int level,
  83.                              const struct ucl_compress_config_p conf,
  84.                                    ucl_uintp result );
  85.  
  86.  
  87. /***********************************************************************
  88. // decompressors
  89. ************************************************************************/
  90.  
  91. UCL_EXTERN(int)
  92. ucl_nrv2b_decompress_8          ( const ucl_byte *src, ucl_uint  src_len,
  93.                                         ucl_byte *dst, ucl_uint *dst_len,
  94.                                         ucl_voidp wrkmem );
  95. UCL_EXTERN(int)
  96. ucl_nrv2b_decompress_le16       ( const ucl_byte *src, ucl_uint  src_len,
  97.                                         ucl_byte *dst, ucl_uint *dst_len,
  98.                                         ucl_voidp wrkmem );
  99. UCL_EXTERN(int)
  100. ucl_nrv2b_decompress_le32       ( const ucl_byte *src, ucl_uint  src_len,
  101.                                         ucl_byte *dst, ucl_uint *dst_len,
  102.                                         ucl_voidp wrkmem );
  103. UCL_EXTERN(int)
  104. ucl_nrv2b_decompress_safe_8     ( const ucl_byte *src, ucl_uint  src_len,
  105.                                         ucl_byte *dst, ucl_uint *dst_len,
  106.                                         ucl_voidp wrkmem );
  107. UCL_EXTERN(int)
  108. ucl_nrv2b_decompress_safe_le16  ( const ucl_byte *src, ucl_uint  src_len,
  109.                                         ucl_byte *dst, ucl_uint *dst_len,
  110.                                         ucl_voidp wrkmem );
  111. UCL_EXTERN(int)
  112. ucl_nrv2b_decompress_safe_le32  ( const ucl_byte *src, ucl_uint  src_len,
  113.                                         ucl_byte *dst, ucl_uint *dst_len,
  114.                                         ucl_voidp wrkmem );
  115.  
  116. UCL_EXTERN(int)
  117. ucl_nrv2d_decompress_8          ( const ucl_byte *src, ucl_uint  src_len,
  118.                                         ucl_byte *dst, ucl_uint *dst_len,
  119.                                         ucl_voidp wrkmem );
  120. UCL_EXTERN(int)
  121. ucl_nrv2d_decompress_le16       ( const ucl_byte *src, ucl_uint  src_len,
  122.                                         ucl_byte *dst, ucl_uint *dst_len,
  123.                                         ucl_voidp wrkmem );
  124. UCL_EXTERN(int)
  125. ucl_nrv2d_decompress_le32       ( const ucl_byte *src, ucl_uint  src_len,
  126.                                         ucl_byte *dst, ucl_uint *dst_len,
  127.                                         ucl_voidp wrkmem );
  128. UCL_EXTERN(int)
  129. ucl_nrv2d_decompress_safe_8     ( const ucl_byte *src, ucl_uint  src_len,
  130.                                         ucl_byte *dst, ucl_uint *dst_len,
  131.                                         ucl_voidp wrkmem );
  132. UCL_EXTERN(int)
  133. ucl_nrv2d_decompress_safe_le16  ( const ucl_byte *src, ucl_uint  src_len,
  134.                                         ucl_byte *dst, ucl_uint *dst_len,
  135.                                         ucl_voidp wrkmem );
  136. UCL_EXTERN(int)
  137. ucl_nrv2d_decompress_safe_le32  ( const ucl_byte *src, ucl_uint  src_len,
  138.                                         ucl_byte *dst, ucl_uint *dst_len,
  139.                                         ucl_voidp wrkmem );
  140.  
  141.  
  142. /***********************************************************************
  143. // assembler decompressors [TO BE ADDED]
  144. ************************************************************************/
  145.  
  146.  
  147. /***********************************************************************
  148. // test an overlapping in-place decompression within a buffer
  149. //   - try a virtual decompression from buf[src_off] -> buf[0]
  150. //   - size of buf must be src_off + src_len
  151. //   - no data is actually written
  152. //   - only the bytes at buf[src_off .. src_off+src_len] will get accessed
  153. ************************************************************************/
  154.  
  155. UCL_EXTERN(int)
  156. ucl_nrv2b_test_overlap_8        ( const ucl_byte *buf, ucl_uint src_off,
  157.                                         ucl_uint  src_len, ucl_uint *dst_len,
  158.                                         ucl_voidp wrkmem );
  159. UCL_EXTERN(int)
  160. ucl_nrv2b_test_overlap_le16     ( const ucl_byte *buf, ucl_uint src_off,
  161.                                         ucl_uint  src_len, ucl_uint *dst_len,
  162.                                         ucl_voidp wrkmem );
  163. UCL_EXTERN(int)
  164. ucl_nrv2b_test_overlap_le32     ( const ucl_byte *buf, ucl_uint src_off,
  165.                                         ucl_uint  src_len, ucl_uint *dst_len,
  166.                                         ucl_voidp wrkmem );
  167.  
  168. UCL_EXTERN(int)
  169. ucl_nrv2d_test_overlap_8        ( const ucl_byte *buf, ucl_uint src_off,
  170.                                         ucl_uint  src_len, ucl_uint *dst_len,
  171.                                         ucl_voidp wrkmem );
  172. UCL_EXTERN(int)
  173. ucl_nrv2d_test_overlap_le16     ( const ucl_byte *buf, ucl_uint src_off,
  174.                                         ucl_uint  src_len, ucl_uint *dst_len,
  175.                                         ucl_voidp wrkmem );
  176. UCL_EXTERN(int)
  177. ucl_nrv2d_test_overlap_le32     ( const ucl_byte *buf, ucl_uint src_off,
  178.                                         ucl_uint  src_len, ucl_uint *dst_len,
  179.                                         ucl_voidp wrkmem );
  180.  
  181.  
  182. #ifdef __cplusplus
  183. } /* extern "C" */
  184. #endif
  185.  
  186. #endif /* already included */
  187.  
  188.